home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / others / amimacro.zip / PYBIBLIO.SMM < prev    next >
INI File  |  1993-02-13  |  13KB  |  864 lines

  1. [ver]
  2.     4
  3. [sty]
  4.     _macro.sty
  5. [files]
  6. [charset]
  7.     82
  8.     ANSI (Windows, IBM CP 1252)
  9. [revisions]
  10.     0
  11. [prn]
  12.     Citizen GSX-140
  13. [port]
  14.     LPT1:
  15. [lang]
  16.     1
  17. [desc]
  18.     Creates APA style bibliographies from Psychlit Searches.
  19.     
  20.     
  21.     
  22.     
  23.     729650632
  24.     32
  25.     718841980
  26.     513
  27.     4
  28.     0
  29.     0
  30.     0
  31.     0
  32.     
  33.     
  34.     
  35.     
  36.     
  37.     
  38.     1
  39. [fopts]
  40.     0
  41.     1
  42.     0
  43.     0
  44. [lnopts]
  45.     2
  46.     Body Text
  47.     1
  48. [docopts]
  49.     5
  50.     2
  51. [GramStyle]
  52.     
  53. [l1]
  54.     0
  55. [pg]
  56.     4
  57.     59 0 14 0 0 0 0 216 65535 Standard    65535 0 0    0 0 0 0 0 0 0 65535 0 0 65535 0 0 0 0 0
  58.     114 0 27 0 0 1 0 216 65535 Standard    65535 0 0    0 0 0 0 0 0 0 65535 0 0 65535 0 0 0 0 0
  59.     172 0 6 0 0 0 0 216 65535 Standard    65535 0 0    0 0 0 0 0 0 0 65535 0 0 65535 0 0 0 0 0
  60.     183 0 12 1025 0 0 0 216 65535 Standard    65535 0 0    0 0 0 0 0 0 0 65535 0 0 65535 0 0 0 0 0
  61. [edoc]
  62. @Function@<:#212,10800>FUNCTION Bibliography()
  63.  
  64. <:#216,10800>Onerror endit
  65.  
  66. <:#216,10800>Oncancel endit
  67.  
  68. <:#216,10800>Darkmode(1)
  69.  
  70. <:#216,10800>hourglass(1)
  71.  
  72. <:#216,10800>c=1
  73.  
  74. <:#216,10800>DIM ats(9)
  75.  
  76. <:#216,10800>openfile=GetOpenFileName$()
  77.  
  78. <:#216,10800>StatusBarMsg("Creating Bibliography for {openfile}")
  79.  
  80. part=Right$(openfile, 13)
  81.  
  82. part=strfield$(part,2,"\")
  83.  
  84. part=Left$(part,5)
  85.  
  86. hold=strcat$("BIB",part)
  87.  
  88. <:#216,10800>bibfile=query$("Enter the Name for the Bibliography Reference File",hold)
  89.  
  90. <:#216,10800>Type( "<[>CTRLHome]")
  91.  
  92. <:#216,10800>Done=Replace(0,0,5,"AU:","")
  93.  
  94. <:#216,10800>if done = -7
  95.  
  96. <:#216,10800>    goto endit
  97.  
  98. <:#216,10800>Endif
  99.  
  100. <:#216,10800>StatusBarMsg("Working on reference # {c}")
  101.  
  102. <:#216,10800>Type( "<[>Right]<[>CTRLSHIFTDown]" )
  103.  
  104. <:#216,10800>au=curshade$()
  105.  
  106. <:#216,10800>for a = 1 to 9
  107.  
  108. <:#216,10800>    ats(a)=strfield$(au,a,";")
  109.  
  110. <:#216,10800>    if ats(a) = -1
  111.  
  112. <:#216,10800>        l = a - 1
  113.  
  114. <:#216,10800>        break
  115.  
  116. <:#216,10800>    endif
  117.  
  118. <:#216,10800>next
  119.  
  120. <:#216,10800>for x = 1 to l
  121.  
  122. <:#216,10800>    ln=strfield$(ats(x),1,"-")
  123.  
  124. <:#216,10800>    fi=strfield$(ats(x),2,"-")
  125.  
  126. <:#216,10800>    si=strfield$(ats(x),3,"-")
  127.  
  128. <:#216,10800>    If si = -1
  129.  
  130. <:#216,10800>        hold = 1
  131.  
  132. <:#216,10800>    endif
  133.  
  134. <:#216,10800>    fi=left$(fi,1)
  135.  
  136. <:#216,10800>    si=left$(si,1)
  137.  
  138. <:#216,10800>    If hold = 1
  139.  
  140. <:#216,10800>        ats(x)=strcat$(ln," ",fi,".")
  141.  
  142. <:#216,10800>    Else
  143.  
  144. <:#216,10800>        ats(x)=strcat$(ln," ",fi,". ",si,".")
  145.  
  146. <:#216,10800>    endif
  147.  
  148. <:#216,10800>    hold=0
  149.  
  150. <:#216,10800>next
  151.  
  152. <:#216,10800>for x = 1 to l
  153.  
  154. <:#216,10800>    if x = l - 1
  155.  
  156. <:#216,10800>        author=strcat$(author,ats(x),", & ")
  157.  
  158. <:#216,10800>    elseif x = l
  159.  
  160. <:#216,10800>        author=strcat$(author,ats(x),"  ")
  161.  
  162. <:#216,10800>    else
  163.  
  164. <:#216,10800>        author=strcat$(author,ats(x),", ")
  165.  
  166. <:#216,10800>    endif
  167.  
  168. <:#216,10800>next
  169.  
  170. <:#216,10800>Type("<[>Left]<[>CTRLDown]<[>CTRLDown]<[>CTRLDown]<[>CTRLDown]<[>CTRLSHIFTLeft]")
  171.  
  172. <:#216,10800>year=curshade$()
  173.  
  174. <:#216,10800>Type( "<[>CTRLUp]<[>CTRLUp]<[>CTRLUp]<[>CTRLUp]<[>CTRLUp]<[>CTRLRight]<[>CTRLRight]" )
  175.  
  176. <:#216,10800>Type( "<[>CTRLSHIFTDown]" )
  177.  
  178. <:#216,10800>ti=curshade$()
  179.  
  180. <:#216,10800>Type( "<[>CTRLDown]<[>CTRLDown]<[>CTRLDown]<[>Home]<[>CTRLRight]<[>CTRLRight]<[>CTRLSHIFTDown]" )
  181.  
  182. <:#216,10800>jn=curshade$()
  183.  
  184. <:#216,10800>jnt=strfield$(jn,1,";")
  185.  
  186. <:#216,10800>Type("<[>CTRLUp]")
  187.  
  188. <:#216,10800>Done=Replace(0,0,5,"Vol","")
  189.  
  190. <:#216,10800>Type ("<[>Right]<[>CTRLSHIFTDown]" )
  191.  
  192. <:#216,10800>vp=curshade$()
  193.  
  194. <:#216,10800>vol=strfield$(vp,1," ")
  195.  
  196. <:#216,10800>pg=strfield$(vp,2," ")
  197.  
  198. @Function@<:#212,10800>Open:
  199.  
  200. <:#216,10800>StatusBarMsg("Opening a new file: {bibfile}.SAM")
  201.  
  202. <:#216,10800>New("_Biblio.sty"  1 0  )
  203.  
  204. <:#216,10800>Type( "{openfile}<[>Enter]<[>F4]" )
  205.  
  206. <:#432,10800>Type( "<[>CTRLHome]<[>end]<[>CTRLLeft]<[>CTRLLeft]<[>CTRLLeft]<[>CTRLSHIFTHome]<[>Del]Bibliography for <[>Home]<[>SHIFTEnd]" )
  207.  
  208. <:#216,10800>Title=curshade$()
  209.  
  210. <:#216,10800>GotoCmd(4 2 2  )
  211.  
  212. <:#216,10800>Type( "{title}<[>Enter]" )
  213.  
  214. <:#216,10800>PageNumber("Page "  1 1 "1"   )
  215.  
  216. <:#216,10800>Type( "<[>CTRLEnd]" )
  217.  
  218. <:#216,10800>Type("{author}<[>SHIFTHome]")
  219.  
  220. <:#216,10800>Replace(0,0,1024,"-"," ")
  221.  
  222. <:#216,10800>Type("<[>Right]<[>CTRLEnd]")
  223.  
  224. <:#216,10800>Type("({year}).  {ti}  <[>Enter]")
  225.  
  226. <:#216,10800>Italic (1)
  227.  
  228. <:#216,10800>Type ("{jnt}")
  229.  
  230. <:#216,10800>Italic (0)
  231.  
  232. <:#216,10800>Type("<[>CTRLSHIFTUp]")
  233.  
  234. <:#216,10800>Replace(0,0,1024,"-"," ")
  235.  
  236. <:#216,10800>Type("<[>Home]<[>Backspace]<[>CTRLEnd]")
  237.  
  238. <:#216,10800>Type (", {vol}, {pg}. (#{c})<[>Enter]")
  239.  
  240. <:#216,10800>bibfile=strcat$("C:\AMIPRO\SCHOOL\PSYCHLIT\",bibfile,".sam")
  241.  
  242. <:#216,10800>SaveAs(BIBfile 32 "{title}"  ""   )
  243.  
  244. <:#216,10800>StartOfFiles( )
  245.  
  246. <:#216,10800>NextWindow( )
  247.  
  248. <:#216,10800>Type( "<[>CTRLpgdn]")
  249.  
  250. @Function@<:#212,10800>Loop1:
  251.  
  252. <:#216,10800>Done=Replace(0,0,5,"AU:","")
  253.  
  254. <:#216,10800>if done = -7
  255.  
  256. <:#216,10800>    goto saveit
  257.  
  258. <:#216,10800>Endif
  259.  
  260. <:#216,10800>c=c+1
  261.  
  262. <:#216,10800>author=""
  263.  
  264. <:#216,10800>StatusBarMsg("Working on reference # {c}")
  265.  
  266. <:#216,10800>Type( "<[>Right]<[>CTRLSHIFTDown]" )
  267.  
  268. <:#216,10800>au=curshade$()
  269.  
  270. <:#216,10800>for a = 1 to 9
  271.  
  272. <:#216,10800>    ats(a)=strfield$(au,a,";")
  273.  
  274. <:#216,10800>    if ats(a) = -1
  275.  
  276. <:#216,10800>        l = a - 1
  277.  
  278. <:#216,10800>        break
  279.  
  280. <:#216,10800>    endif
  281.  
  282. <:#216,10800>next
  283.  
  284. <:#216,10800>for x = 1 to l
  285.  
  286. <:#216,10800>    ln=strfield$(ats(x),1,"-")
  287.  
  288. <:#216,10800>    fi=strfield$(ats(x),2,"-")
  289.  
  290. <:#216,10800>    si=strfield$(ats(x),3,"-")
  291.  
  292. <:#216,10800>    If si = -1
  293.  
  294. <:#216,10800>        hold = 1
  295.  
  296. <:#216,10800>    endif
  297.  
  298. <:#216,10800>    fi=left$(fi,1)
  299.  
  300. <:#216,10800>    si=left$(si,1)
  301.  
  302. <:#216,10800>    If hold = 1
  303.  
  304. <:#216,10800>        ats(x)=strcat$(ln," ",fi,".")
  305.  
  306. <:#216,10800>    Else
  307.  
  308. <:#216,10800>        ats(x)=strcat$(ln," ",fi,". ",si,".")
  309.  
  310. <:#216,10800>    endif
  311.  
  312. <:#216,10800>    hold=0
  313.  
  314. <:#216,10800>next
  315.  
  316. <:#216,10800>for x = 1 to l
  317.  
  318. <:#216,10800>    if x = l - 1
  319.  
  320. <:#216,10800>        author=strcat$(author,ats(x),", & ")
  321.  
  322. <:#216,10800>    elseif x = l
  323.  
  324. <:#216,10800>        author=strcat$(author,ats(x),"  ")
  325.  
  326. <:#216,10800>    else
  327.  
  328. <:#216,10800>        author=strcat$(author,ats(x),", ")
  329.  
  330. <:#216,10800>    endif
  331.  
  332. <:#216,10800>next
  333.  
  334. <:#216,10800>Type("<[>Left]<[>CTRLDown]<[>CTRLDown]<[>CTRLDown]<[>CTRLDown]<[>CTRLSHIFTLeft]")
  335.  
  336. <:#216,10800>year=curshade$()
  337.  
  338. <:#216,10800>Type( "<[>CTRLUp]<[>CTRLUp]<[>CTRLUp]<[>CTRLUp]<[>CTRLUp]<[>CTRLRight]<[>CTRLRight]" )
  339.  
  340. <:#216,10800>Type( "<[>CTRLSHIFTDown]" )
  341.  
  342. <:#216,10800>ti=curshade$()
  343.  
  344. <:#216,10800>Type( "<[>CTRLDown]<[>CTRLDown]<[>CTRLDown]<[>Home]<[>CTRLRight]<[>CTRLRight]<[>CTRLSHIFTDown]" )
  345.  
  346. <:#216,10800>jn=curshade$()
  347.  
  348. <:#216,10800>jnt=strfield$(jn,1,";")
  349.  
  350. <:#216,10800>Type("<[>CTRLUp]")
  351.  
  352. <:#216,10800>Done=Replace(0,0,5,"Vol","")
  353.  
  354. <:#216,10800>Type ("<[>Right]<[>CTRLSHIFTDown]" )
  355.  
  356. <:#216,10800>vp=curshade$()
  357.  
  358. <:#216,10800>vol=strfield$(vp,1," ")
  359.  
  360. <:#216,10800>pg=strfield$(vp,2," ")
  361.  
  362. <:#216,10800>NextWindow( )
  363.  
  364. <:#216,10800>Type("{author}<[>SHIFTHome]")
  365.  
  366. <:#216,10800>Replace(0,0,1024,"-"," ")
  367.  
  368. <:#216,10800>Type("<[>Right]<[>CTRLEnd]")
  369.  
  370. <:#216,10800>Type("({year}).  {ti}  <[>Enter]")
  371.  
  372. <:#216,10800>Italic (1)
  373.  
  374. <:#216,10800>Type ("{jnt}")
  375.  
  376. <:#216,10800>Italic (0)
  377.  
  378. <:#216,10800>Type("<[>CTRLSHIFTUp]")
  379.  
  380. <:#216,10800>Replace(0,0,1024,"-"," ")
  381.  
  382. <:#216,10800>Type("<[>Home]<[>Backspace]<[>CTRLEnd]")
  383.  
  384. <:#216,10800>Type (", {vol}, {pg}. (#{c})<[>Enter]")
  385.  
  386. <:#216,10800>StartOfFiles( )
  387.  
  388. <:#216,10800>NextWindow( )
  389.  
  390. <:#216,10800>Type( "<[>CTRLpgdn]")
  391.  
  392. <:#216,10800>goto loop1
  393.  
  394. @Function@<:#212,10800>saveit:
  395.  
  396. <:#216,10800>statusBarMsg("Saving Biblio.sam")
  397.  
  398. <:#216,10800>NextWindow( )
  399.  
  400. <:#216,10800>Type( "<[>CTRLHome]" )
  401.  
  402. <:#216,10800>Replace(0 0 1042 ".."  "."   )
  403.  
  404. <:#216,10800>Save()
  405.  
  406. <:#216,10800>statusBarMsg("Sorting Biblio.sam")
  407.  
  408. <:#216,10800>Type( "<[>Down]<[>Home]<[>CTRLSHIFTEnd]" )
  409.  
  410. <:#216,10800>Sort(1 2 1 1 40 4427  )
  411.  
  412. <:#216,10800>Type( "<[>CTRLHome]" )
  413.  
  414. <:#216,10800>statusBarMsg("Saving Biblio.sam")
  415.  
  416. <:#216,10800>Save()
  417.  
  418. @Function@<:#212,10800>Endit:
  419.  
  420. <:#216,10800>statusBarMsg("")
  421.  
  422. <:#216,10800>darkmode(0)
  423.  
  424. <:#216,10800>hourglass(0)
  425.  
  426. <:#216,10800>END FUNCTION
  427.  
  428. >
  429.  
  430. [Embedded]
  431. 00008023
  432. >
  433. [macsum] 1
  434. Bibliography 0 0 24 0
  435. [macse]
  436. 14 Bibliography
  437. 20 00004516
  438. 19 00004516
  439. 0 292 1
  440. 0 296 1
  441. 5 1
  442. 8 1
  443. 5 9
  444. 21 2 [X]
  445. 0 267
  446. 13
  447. 8 3
  448. 0 789 "Creating Bibliography for {3}"
  449. 0 807 "{3}" 13
  450. 13
  451. 8 4
  452. 0 20 "{4}" 2 "\"
  453. 13
  454. 8 4
  455. 0 806 "{4}" 5
  456. 13
  457. 8 4
  458. 0 16 "BIB" "{4}"
  459. 13
  460. 8 5
  461. 0 1 "Enter the Name for the Bibliography Reference File" "{5}"
  462. 13
  463. 8 6
  464. 0 6 "[16420]"
  465. 2 488 1 0 0 5 "AU:" ""
  466. 13
  467. 8 7
  468. 6 7
  469. 5 -7
  470. 18 0
  471. 11 00000408
  472. 10 00004516
  473. 0 789 "Working on reference # {1}"
  474. 0 6 "[39][20520]"
  475. 0 24
  476. 13
  477. 8 8
  478. 5 1
  479. 8 9
  480. 5 9
  481. 6 9
  482. 18 2
  483. 12 00000563
  484. 10 00000683
  485. 5 1
  486. 6 9
  487. 3 0
  488. 8 9
  489. 10 00000488
  490. 6 9
  491. 0 20 "{8}" "{9}" ";"
  492. 13
  493. 23 2
  494. 6 9
  495. 22 2
  496. 5 -1
  497. 18 0
  498. 11 00000670
  499. 6 9
  500. 5 1
  501. 3 1
  502. 8 10
  503. 10 00000683
  504. 10 00000530
  505. 5 1
  506. 8 11
  507. 6 10
  508. 6 11
  509. 18 2
  510. 12 00000773
  511. 10 00001145
  512. 5 1
  513. 6 11
  514. 3 0
  515. 8 11
  516. 10 00000694
  517. 6 11
  518. 22 2
  519. 0 20 [X] 1 "-"
  520. 13
  521. 8 12
  522. 6 11
  523. 22 2
  524. 0 20 [X] 2 "-"
  525. 13
  526. 8 13
  527. 6 11
  528. 22 2
  529. 0 20 [X] 3 "-"
  530. 13
  531. 8 14
  532. 6 14
  533. 5 -1
  534. 18 0
  535. 11 00000928
  536. 5 1
  537. 8 5
  538. 0 806 "{13}" 1
  539. 13
  540. 8 13
  541. 0 806 "{14}" 1
  542. 13
  543. 8 14
  544. 6 5
  545. 5 1
  546. 18 0
  547. 11 00001066
  548. 6 11
  549. 0 16 "{12}" " " "{13}" "."
  550. 13
  551. 23 2
  552. 10 00001122
  553. 6 11
  554. 0 16 "{12}" " " "{13}" ". " "{14}" "."
  555. 13
  556. 23 2
  557. 5 0
  558. 8 5
  559. 10 00000738
  560. 5 1
  561. 8 11
  562. 6 10
  563. 6 11
  564. 18 2
  565. 12 00001235
  566. 10 00001480
  567. 5 1
  568. 6 11
  569. 3 0
  570. 8 11
  571. 10 00001156
  572. 6 11
  573. 6 10
  574. 5 1
  575. 3 1
  576. 18 0
  577. 11 00001335
  578. 6 11
  579. 22 2
  580. 0 16 "{15}" [X] ", & "
  581. 13
  582. 8 15
  583. 10 00001467
  584. 6 11
  585. 6 10
  586. 18 0
  587. 11 00001423
  588. 6 11
  589. 22 2
  590. 0 16 "{15}" [X] "  "
  591. 13
  592. 8 15
  593. 10 00001467
  594. 6 11
  595. 22 2
  596. 0 16 "{15}" [X] ", "
  597. 13
  598. 8 15
  599. 10 00001200
  600. 0 6 "[37][16424][16424][16424][16424][20517]"
  601. 0 24
  602. 13
  603. 8 16
  604. 0 6 "[16422][16422][16422][16422][16422][16423][16423]"
  605. 0 6 "[20520]"
  606. 0 24
  607. 13
  608. 8 17
  609. 0 6 "[16424][16424][16424][36][16423][16423][20520]"
  610. 0 24
  611. 13
  612. 8 18
  613. 0 20 "{18}" 1 ";"
  614. 13
  615. 8 19
  616. 0 6 "[16422]"
  617. 2 488 1 0 0 5 "Vol" ""
  618. 13
  619. 8 7
  620. 0 6 "[39][20520]"
  621. 0 24
  622. 13
  623. 8 20
  624. 0 20 "{20}" 1 " "
  625. 13
  626. 8 21
  627. 0 20 "{20}" 2 " "
  628. 13
  629. 8 22
  630. 0 789 "Opening a new file: {6}.SAM"
  631. 2 101 1 "_Biblio.sty" 1 0
  632. 0 6 "{3}[13][115]"
  633. 0 6 "[16420][35][16421][16421][16421][20516][46]Bibliography for [36][4131]"
  634. 0 24
  635. 13
  636. 8 23
  637. 2 452 1 4 2 2
  638. 0 6 "{23}[13]"
  639. 2 356 1 "Page " 1 1 "1"
  640. 0 6 "[16419]"
  641. 0 6 "{15}[4132]"
  642. 2 488 1 0 0 1024 "-" " "
  643. 0 6 "[39][16419]"
  644. 0 6 "({16}).  {17}  [13]"
  645. 2 255 1 1
  646. 0 6 "{19}"
  647. 2 255 1 0
  648. 0 6 "[20518]"
  649. 2 488 1 0 0 1024 "-" " "
  650. 0 6 "[36][8][16419]"
  651. 0 6 ", {21}, {22}. (#{1})[13]"
  652. 0 16 "C:\AMIPRO\SCHOOL\PSYCHLIT\" "{6}" ".sam"
  653. 13
  654. 8 6
  655. 2 104 1 "{6}" 32 "{23}" ""
  656. 2 528 1
  657. 2 727 1
  658. 0 6 "[16418]"
  659. 2 488 1 0 0 5 "AU:" ""
  660. 13
  661. 8 7
  662. 6 7
  663. 5 -7
  664. 18 0
  665. 11 00002533
  666. 10 00004302
  667. 6 1
  668. 5 1
  669. 3 0
  670. 8 1
  671. 7 ""
  672. 8 15
  673. 0 789 "Working on reference # {1}"
  674. 0 6 "[39][20520]"
  675. 0 24
  676. 13
  677. 8 8
  678. 5 1
  679. 8 9
  680. 5 9
  681. 6 9
  682. 18 2
  683. 12 00002720
  684. 10 00002840
  685. 5 1
  686. 6 9
  687. 3 0
  688. 8 9
  689. 10 00002645
  690. 6 9
  691. 0 20 "{8}" "{9}" ";"
  692. 13
  693. 23 2
  694. 6 9
  695. 22 2
  696. 5 -1
  697. 18 0
  698. 11 00002827
  699. 6 9
  700. 5 1
  701. 3 1
  702. 8 10
  703. 10 00002840
  704. 10 00002687
  705. 5 1
  706. 8 11
  707. 6 10
  708. 6 11
  709. 18 2
  710. 12 00002930
  711. 10 00003302
  712. 5 1
  713. 6 11
  714. 3 0
  715. 8 11
  716. 10 00002851
  717. 6 11
  718. 22 2
  719. 0 20 [X] 1 "-"
  720. 13
  721. 8 12
  722. 6 11
  723. 22 2
  724. 0 20 [X] 2 "-"
  725. 13
  726. 8 13
  727. 6 11
  728. 22 2
  729. 0 20 [X] 3 "-"
  730. 13
  731. 8 14
  732. 6 14
  733. 5 -1
  734. 18 0
  735. 11 00003085
  736. 5 1
  737. 8 5
  738. 0 806 "{13}" 1
  739. 13
  740. 8 13
  741. 0 806 "{14}" 1
  742. 13
  743. 8 14
  744. 6 5
  745. 5 1
  746. 18 0
  747. 11 00003223
  748. 6 11
  749. 0 16 "{12}" " " "{13}" "."
  750. 13
  751. 23 2
  752. 10 00003279
  753. 6 11
  754. 0 16 "{12}" " " "{13}" ". " "{14}" "."
  755. 13
  756. 23 2
  757. 5 0
  758. 8 5
  759. 10 00002895
  760. 5 1
  761. 8 11
  762. 6 10
  763. 6 11
  764. 18 2
  765. 12 00003392
  766. 10 00003637
  767. 5 1
  768. 6 11
  769. 3 0
  770. 8 11
  771. 10 00003313
  772. 6 11
  773. 6 10
  774. 5 1
  775. 3 1
  776. 18 0
  777. 11 00003492
  778. 6 11
  779. 22 2
  780. 0 16 "{15}" [X] ", & "
  781. 13
  782. 8 15
  783. 10 00003624
  784. 6 11
  785. 6 10
  786. 18 0
  787. 11 00003580
  788. 6 11
  789. 22 2
  790. 0 16 "{15}" [X] "  "
  791. 13
  792. 8 15
  793. 10 00003624
  794. 6 11
  795. 22 2
  796. 0 16 "{15}" [X] ", "
  797. 13
  798. 8 15
  799. 10 00003357
  800. 0 6 "[37][16424][16424][16424][16424][20517]"
  801. 0 24
  802. 13
  803. 8 16
  804. 0 6 "[16422][16422][16422][16422][16422][16423][16423]"
  805. 0 6 "[20520]"
  806. 0 24
  807. 13
  808. 8 17
  809. 0 6 "[16424][16424][16424][36][16423][16423][20520]"
  810. 0 24
  811. 13
  812. 8 18
  813. 0 20 "{18}" 1 ";"
  814. 13
  815. 8 19
  816. 0 6 "[16422]"
  817. 2 488 1 0 0 5 "Vol" ""
  818. 13
  819. 8 7
  820. 0 6 "[39][20520]"
  821. 0 24
  822. 13
  823. 8 20
  824. 0 20 "{20}" 1 " "
  825. 13
  826. 8 21
  827. 0 20 "{20}" 2 " "
  828. 13
  829. 8 22
  830. 2 727 1
  831. 0 6 "{15}[4132]"
  832. 2 488 1 0 0 1024 "-" " "
  833. 0 6 "[39][16419]"
  834. 0 6 "({16}).  {17}  [13]"
  835. 2 255 1 1
  836. 0 6 "{19}"
  837. 2 255 1 0
  838. 0 6 "[20518]"
  839. 2 488 1 0 0 1024 "-" " "
  840. 0 6 "[36][8][16419]"
  841. 0 6 ", {21}, {22}. (#{1})[13]"
  842. 2 528 1
  843. 2 727 1
  844. 0 6 "[16418]"
  845. 10 00002457
  846. 0 789 "Saving Biblio.sam"
  847. 2 727 1
  848. 0 6 "[16420]"
  849. 2 488 1 0 0 1042 ".." "."
  850. 2 103 1
  851. 0 789 "Sorting Biblio.sam"
  852. 0 6 "[40][36][20515]"
  853. 2 456 1 1 2 1 1 40 4427
  854. 0 6 "[16420]"
  855. 0 789 "Saving Biblio.sam"
  856. 2 103 1
  857. 0 789 ""
  858. 0 292 0
  859. 0 296 0
  860. 6 0
  861. 15
  862. 9
  863. 00008048
  864.